home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / s_to_z / uimagine / imgdemo2.dpr < prev    next >
Text File  |  1996-09-15  |  225b  |  15 lines

  1. program Imgdemo2;
  2.  
  3. uses
  4.   Forms,
  5.   Image in 'IMAGE.PAS',
  6.   Imgdemo in 'IMGDEMO.PAS' {Form1};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Title := 'ImgDemo';
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.